.product-catalouge {
    span {
        background-color: var(--sec);
        padding: 5px;
        font-size: 12.27px;
        font-weight: 700;
    }
    p {
        font-size: 20px;
        font-weight: 300;
        letter-spacing: -0.25px;
        margin: 24px 0;
    }
    @media (max-width: 1024px) {
        p {
            font-size: 18px;
        }
    }
    @media (max-width: 768px) {
        p {
            font-size: 16px;
        }
    }
}

.Product-classifications {
    .header {
        h2 {
            font-size: 48px;
            font-weight: 400;
            letter-spacing: -0.25px;
        }
        @media (max-width: 1024px) {
            h2 {
                font-size: 40px;
            }
        }
        @media (max-width: 768px) {
            h2 {
                font-size: 30px;
            }
        }
        a {
            font-size: 12.27px;
            font-weight: 400;
        }
    }

    .product{
        transition-duration: .3s;
    }

    .product:hover{
        box-shadow: 0px 5px 40px rgba(128, 128, 128, 0.774);
        transform: translateY(-10px);
    }
}
